home *** CD-ROM | disk | FTP | other *** search
/ Hottest 6 / Hottest 6 (1996)(PDSoft)[!].iso / software / fredfish / 1092.lha / Programs / ErrorMsg / Include / clib / errormsg_protos.h
C/C++ Source or Header  |  1994-12-22  |  1KB  |  33 lines

  1. #ifndef    CLIB_ERRORMSG_PROTOS_H
  2. #define    CLIB_ERRORMSG_PROTOS_H
  3. /*
  4. **    $Filename: clib/errormsg_protos.h $
  5. **    $Release: 4.01 $
  6. **    $Revision: 4.01 $
  7. **
  8. **    (C) Copyright 1994 Frédéric Delacroix
  9. **        All Rights Reserved
  10. */
  11.  
  12. BOOL        AlertErrorMsg(LONG,ULONG,ULONG);
  13. LONG        DisplayErrorMsgA(LONG,ULONG,ULONG,struct TagItem *);
  14. LONG        DisplayMessageA(UBYTE *,APTR,struct TagItem *);
  15. BYTE        ermOpenDeviceA(ULONG,ULONG,struct IORequest *,ULONG, struct TagItem" *);
  16. struct Library *ermOpenLibraryA(STRPTR,ULONG,struct TagItem *)
  17. struct Library *ermOpenLibraryIDA(ULONG,ULONG,APTR *,struct TagItem *)
  18. APTR        ermOpenResourceA(STRPTR,APTR *,struct TagItem *)
  19. STRPTR        GetErrorMsgA(LONG,ULONG,ULONG,struct TagItem *);
  20. BOOL        PutErrorMsg(LONG,ULONG,ULONG,STRPTR);
  21.  
  22. /* varargs stubs, compile libraries first */
  23.  
  24. LONG        DisplayErrorMsg(LONG,ULONG,ULONG,Tag,...);
  25. LONG        DisplayMessage(UBYTE *,APTR,Tag,...);
  26. BYTE        ermOpenDevice(ULONG,ULONG,struct IORequest *,ULONG, Tag,...);
  27. struct Library *ermOpenLibrary(STRPTR,ULONG,Tag,...);
  28. struct Library *ermOpenLibraryID(ULONG,ULONG,APTR *,Tag,...);
  29. APTR        ermOpenResource(STRPTR,APTR *,Tag,...);
  30. STRPTR        GetErrorMsg(LONG,ULONG,ULONG,Tag,...);
  31.  
  32. #endif
  33.